#### Typescript: TSDeclaration --- ```typescript // Typescript: TSDeclaration= Nullable = T | null; // Typescript: TSDeclaration= Record = { [P in K]: T; } // Typescript: TSDeclaration= MySecialArray = T[]; generate: export type Nullable = T | null; export type Record = { [P in K]: T }; export type MySecialArray = T[]; ```