interfaces/ts/data/property.ts
2022-07-19 17:16:37 +02:00

9 lines
211 B
TypeScript

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