Skip to content

Instantly share code, notes, and snippets.

@umanshield
Last active January 27, 2019 17:28
Show Gist options
  • Save umanshield/dc1d6eb654414642e5b9120273d67c4a to your computer and use it in GitHub Desktop.
Save umanshield/dc1d6eb654414642e5b9120273d67c4a to your computer and use it in GitHub Desktop.
Typescript
# watch file
tsc -w --outDir ./build "test.ts"
type Entities = 'leads_id' | 'company_id' | 'customers_id';
type Schema$Type = {
[K in Entities]: number | number[] | string[];
};
interface SquareConfig {
color?: string;
width?: number;
[propName: string]: any;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment