mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
8 lines
248 B
TypeScript
8 lines
248 B
TypeScript
|
import {DocModel, IRowModel} from 'app/client/models/DocModel';
|
||
|
|
||
|
export type ACLRuleRec = IRowModel<"_grist_ACLRules">;
|
||
|
|
||
|
export function createACLRuleRec(this: ACLRuleRec, docModel: DocModel): void {
|
||
|
// currently don't care much about content.
|
||
|
}
|