Files
wkc-website/interfaces/index.ts
2022-04-08 11:43:48 -05:00

11 lines
273 B
TypeScript

// You can include shared interfaces/types in a separate file
// and then use them in any component by importing them. For
// example, to import the interface below do:
//
// import { User } from 'path/to/interfaces';
export type User = {
id: number;
name: string;
};