interface modelling

This commit is contained in:
2020-05-04 14:52:08 +02:00
parent 6101f066cd
commit 373635f0db
5 changed files with 6 additions and 2 deletions

View File

@ -0,0 +1,6 @@
export interface DataApply {
apply(da: DataApply): void;
apply_object(obj: Record<string, unknown>): void;
apply_to(da: DataApply): void;
get_data(): Record<string, unknown>;
}

3
lib/interfaces/index.ts Normal file
View File

@ -0,0 +1,3 @@
export { DataApply } from './DataApply';
export { Serializable } from './Serializable';
export { Graphable } from './Graphable';