projects/dvl-fw-core/src/lib/interfaces/raw-data.ts
Properties |
Methods |
getData |
getData()
|
Returns :
any | Promise
|
toJSON |
toJSON()
|
Returns :
any
|
id |
id:
|
Type : string
|
template |
template:
|
Type : string
|
export interface RawData {
id: string;
template: string;
getData(): any | Promise<any>;
toJSON(): any;
}