ui(admin): add "working" React admin ui
This commit is contained in:
parent
d1c7494933
commit
5402584508
199 changed files with 13387 additions and 151 deletions
13
resources/scripts/api/admin/location.ts
Normal file
13
resources/scripts/api/admin/location.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
import { Model } from '@/api/admin/index';
|
||||
import { Node } from '@/api/admin/node';
|
||||
|
||||
export interface Location extends Model {
|
||||
id: number;
|
||||
short: string;
|
||||
long: string;
|
||||
createdAt: Date;
|
||||
updatedAt: Date;
|
||||
relationships: {
|
||||
nodes?: Node[];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue