8 lines
131 B
TypeScript
8 lines
131 B
TypeScript
import { Instance } from "./InstanceType";
|
|
|
|
export interface User {
|
|
id: number;
|
|
name: string;
|
|
instances: Instance[];
|
|
}
|