interfaces/ts/data/property.ts
2022-07-19 15:52:49 +02:00

8 lines
188 B
TypeScript

import * as plugins from '../ul-interfaces.plugins.js';
export class IProperty {
name: string;
type: 'website' | 'app' | 'api' | 'other';
access: 'private' | 'public' | 'auth';
}