mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
11 lines
348 B
TypeScript
11 lines
348 B
TypeScript
|
import {IRowModel} from 'app/client/models/DocModel';
|
||
|
import * as modelUtil from 'app/client/models/modelUtil';
|
||
|
|
||
|
export interface ShareRec extends IRowModel<"_grist_Shares"> {
|
||
|
optionsObj: modelUtil.SaveableObjObservable<any>;
|
||
|
}
|
||
|
|
||
|
export function createShareRec(this: ShareRec): void {
|
||
|
this.optionsObj = modelUtil.jsonObservable(this.options);
|
||
|
}
|