projecte_ionic/node_modules/tsutils/typeguard/3.0/type.d.ts
2022-02-09 18:30:03 +01:00

7 lines
262 B
TypeScript
Executable file

export * from '../2.9/type';
import * as ts from 'typescript';
export declare function isTupleType(type: ts.Type): type is ts.TupleType;
export declare function isTupleTypeReference(type: ts.Type): type is ts.TypeReference & {
target: ts.TupleType;
};