interface modelling
This commit is contained in:
6
lib/interfaces/DataApply.ts
Normal file
6
lib/interfaces/DataApply.ts
Normal 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
3
lib/interfaces/index.ts
Normal file
@ -0,0 +1,3 @@
|
||||
export { DataApply } from './DataApply';
|
||||
export { Serializable } from './Serializable';
|
||||
export { Graphable } from './Graphable';
|
Reference in New Issue
Block a user