Home
last modified time | relevance | path

Searched refs:T02 (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/test/typeinfer/automatedcases/
DkeyofIntersection.ts26 type T02<T> = keyof (T & B); // "b" | keyof T alias
29 type T05 = T02<A>; // "a" | "b"
DneverUnionIntersection.ts23 type T02 = string & never;
DmappedTypes1.ts25 type T02 = { [P in "a" | "b"]: Item[P]; } alias
DmappedTypes4.ts76 type T02 = Boxified<A | B[] | C | string> alias
DmappedTypesArraysTuples.ts26 type T02 = Required<[number, string?, ...boolean[]]>; alias
DgenericRestParameters2.ts439 type T02 = Parameters<(...args: [number, string, ...boolean[]]) => void>;
/arkcompiler/ets_frontend/arkguard/test/grammar/advanced_type/
Dpredefined_types.ts21 type T02 = Exclude<string | number | (() => void), Function>; // string | number alias