Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
17 lines
579 B
Plaintext
17 lines
579 B
Plaintext
import { DirectusPolicy } from "./policy.js";
|
|
import { MergeCoreCollection } from "../types/schema.js";
|
|
|
|
//#region src/schema/permission.d.ts
|
|
type DirectusPermission<Schema = any> = MergeCoreCollection<Schema, 'directus_permissions', {
|
|
id: number;
|
|
policy: DirectusPolicy<Schema> | string | null;
|
|
collection: string;
|
|
action: string;
|
|
permissions: Record<string, any> | null;
|
|
validation: Record<string, any> | null;
|
|
presets: Record<string, any> | null;
|
|
fields: string[] | null;
|
|
}>;
|
|
//#endregion
|
|
export { DirectusPermission };
|
|
//# sourceMappingURL=permission.d.ts.map |