fix(core): update

This commit is contained in:
2022-07-19 15:52:49 +02:00
parent 5b8fa6ebb7
commit 1119e5f790
9 changed files with 117 additions and 550 deletions

8
ts/data/property.ts Normal file
View File

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