@mistlog/typetype
Version:
A programming language designed for typescript type generation
8 lines (7 loc) • 349 B
TypeScript
import { ITypeVariableDeclaration, ITypeFunctionDeclaration, IImportDeclaration } from "../declaration";
export interface ITypeFile {
kind: "TypeFile";
body: IDeclaration[];
}
export declare type IDeclaration = ITypeVariableDeclaration | ITypeFunctionDeclaration | IImportDeclaration;
export declare function TypeFile(): JSX.Element;