interfaces/ts/data/property.ts

9 lines
211 B
TypeScript
Raw Normal View History

2022-07-19 13:52:49 +00:00
import * as plugins from '../ul-interfaces.plugins.js';
export class IProperty {
name: string;
type: 'website' | 'app' | 'api' | 'other';
access: 'private' | 'public' | 'auth';
2022-07-19 15:16:37 +00:00
checkRefs: string[];
2022-07-19 13:52:49 +00:00
}