mirror of
https://github.com/pelican-dev/panel.git
synced 2025-06-04 02:08:58 +02:00
14 lines
276 B
TypeScript
14 lines
276 B
TypeScript
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[];
|
|
};
|
|
}
|