This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ts from 'typescript' | |
import { readFile, stat, unlink, writeFile } from 'fs/promises' | |
import * as path from 'path' | |
import { faker } from '@faker-js/faker' | |
interface Column { | |
columnType: string | |
default?: any | |
fakeMethod?: string // Optional custom faker method | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Booleanish = boolean | "true" | "false"; | |
type CrossOrigin = "anonymous" | "use-credentials" | "" | undefined; | |
// export = JSX; | |
// export as namespace JSX; | |
declare namespace JSX { | |
interface HTMLProps<T> extends AllHTMLAttributes<T> {} | |
// type DetailedHTMLProps<E extends HTMLAttributes<T>, T> = E; |