Home
last modified time | relevance | path

Searched refs:Omit (Results 1 - 18 of 18) sorted by relevance

/third_party/typescript/tests/baselines/reference/
H A DomitTypeTestErrors01.js8 export type Bar = Omit<Foo, "c">;
9 export type Baz = Omit<Foo, "b" | "c">;
41 export type Bar = Omit<Foo, "c">;
42 export type Baz = Omit<Foo, "b" | "c">;
H A DomitTypeTests01.js8 export type Bar = Omit<Foo, "c">;
9 export type Baz = Omit<Foo, "b" | "c">;
41 export type Bar = Omit<Foo, "c">;
42 export type Baz = Omit<Foo, "b" | "c">;
H A DmappedTypeUnionConstraintInferences.js2 export declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
3 export declare type PartialProperties<T, K extends keyof T> = Partial<Pick<T, K>> & Omit<T, K>;
37 export declare type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
38 export declare type PartialProperties<T, K extends keyof T> = Partial<Pick<T, K>> & Omit<T, K>;
H A DindexedAccessRetainsIndexSignature.js4 type Omit<U, K extends keyof U> = Pick<U, Diff<keyof U, K>>
10 type O = Omit<{ a: number, b: string }, 'a'>
H A DcircularlySimplifyingConditionalTypesNoCrash.js2 type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
18 ): ComponentClass<Omit<P, keyof Shared<TInjectedProps, P>> & TNeedsProps> & { WrappedComponent: ComponentClass<P> }
19 } // Then intersected with and indexed via Omit and &
H A DcomplicatedIndexedAccessKeyofReliesOnKeyofNeverUpperBound.js18 type Omit<T, K extends keyof T> = Pick<
29 Partial<Omit<T, 'type' | 'id'>> & { localChannelId: string };
H A DidenticalTypesNoDifferByCheckOrder.js8 type SomePropsX = Required<Pick<SomeProps, "x">> & Omit<SomeProps, "x">;
16 type SomePropsCloneX = Required<Pick<SomePropsClone, "x">> & Omit<SomePropsClone, "x">;
H A DomitTypeHelperModifiers01.js9 type B = Omit<A, 'a'>;
H A DintersectionsAndOptionalProperties.js16 type From = { field: null } & Omit<To, 'field'>;
H A DjsxComplexSignatureHasApplicabilityError.js17 Omit<WrappedProps, "multi">,
45 export type Omit<T, K extends keyof any> = T extends any ? Pick<T, Exclude<keyof T, K>> : never;
46 export type Overwrite<T, U> = Omit<T, keyof T & keyof U> & U;
H A DreactReduxLikeDeferredInferenceAllowsAssignment.js69 type Omit<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>;
77 Omit<GetProps<C>, keyof Shared<TInjectedProps, GetProps<C>>> & TNeedsProps
H A DunionAndIntersectionInference3.js72 ): ComponentClass<Omit<P, keyof RouteComponentProps>>;
H A DconditionalTypes1.js296 type Omit<T extends object> = { [P in keyof T]: If<Eq<T[P], never>, never, P>; }[keyof T];
298 type A = Omit<{ a: void; b: never; }>; // 'a'
H A DramdaToolsNoInfinite2.js29 declare module "Object/Omit" {
36 export type Omit<O extends object, K extends Key> = O extends unknown ? _Omit<O, K> : never;
103 import { _Omit } from "Object/Omit";
120 import { _Omit } from "Object/Omit";
/third_party/node/deps/v8/src/codegen/
H A Dsource-position-table.cc157 if (Omit()) return; in AddPosition()
177 DCHECK(!Omit()); in ToSourcePositionTable()
206 DCHECK(!Omit()); in ToSourcePositionTableVector()
H A Dsource-position-table.h62 inline bool Omit() const { return mode_ != RECORD_SOURCE_POSITIONS; } in Omit() function in v8::internal::SourcePositionTableBuilder
/third_party/mesa3d/.gitlab-ci/common/
H A Dintel-gpu-freq.sh589 Omit min/max prefix to set both frequencies.
/third_party/node/deps/v8/src/interpreter/
H A Dbytecode-array-writer.cc71 source_position_table_builder_.Omit() in ToSourcePositionTable()

Completed in 40 milliseconds