mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 19:59:31 +08:00
6 lines
256 B
Text
6 lines
256 B
Text
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;
|
|
};
|