interfaces/ts/data/property.ts

8 lines
188 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';
}