Searched defs:Omit (Results 1 – 10 of 10) sorted by relevance
/third_party/typescript/tests/cases/compiler/ |
D | indexedAccessRetainsIndexSignature.ts | 3 type Omit<U, K extends keyof U> = Pick<U, Diff<keyof U, K>> alias
|
D | circularlySimplifyingConditionalTypesNoCrash.ts | 2 type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; alias
|
D | mappedTypeUnionConstraintInferences.ts | 3 export declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; alias
|
D | circularlyConstrainedMappedTypeContainingConditionalNoInfiniteInstantiationDepth.ts | 59 export type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; alias
|
D | complicatedIndexedAccessKeyofReliesOnKeyofNeverUpperBound.ts | 17 type Omit<T, K extends keyof T> = Pick< alias
|
D | reactReduxLikeDeferredInferenceAllowsAssignment.ts | 69 type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; alias
|
D | ramdaToolsNoInfinite2.ts | 36 export type Omit<O extends object, K extends Key> = O extends unknown ? _Omit<O, K> : never; alias
|
/third_party/node/deps/v8/src/codegen/ |
D | source-position-table.h | 62 inline bool Omit() const { return mode_ != RECORD_SOURCE_POSITIONS; } in Omit() function
|
/third_party/typescript/lib/ |
D | lib.es5.d.ts | 1607 type Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>; alias
|
/third_party/typescript/src/lib/ |
D | es5.d.ts | 1587 type Omit<T, K extends keyof any> = Pick<T, Exclude<keyof T, K>>; alias
|