8 строки
215 B
TypeScript
8 строки
215 B
TypeScript
|
import { Contract } from "@paperbits/common";
|
||
|
|
||
|
/**
|
||
|
* Data contact (data layer) that defines how widget configuration gets persisted.
|
||
|
*/
|
||
|
export interface WidgetContract extends Contract {
|
||
|
// property: string;
|
||
|
}
|