blob: 5cf0df95a2f1646338318f5aa8de1f8f95d75c10 [file] [log] [blame]
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;
};