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
16 lines
538 B
Plaintext
16 lines
538 B
Plaintext
import { DirectusUser } from "./user.js";
|
|
import { DirectusRole } from "./role.js";
|
|
import { DirectusPolicy } from "./policy.js";
|
|
import { MergeCoreCollection } from "../types/schema.js";
|
|
|
|
//#region src/schema/access.d.ts
|
|
type DirectusAccess<Schema = any> = MergeCoreCollection<Schema, 'directus_access', {
|
|
id: string;
|
|
role: string | DirectusRole<Schema>;
|
|
user: string | DirectusUser<Schema>;
|
|
policy: string | DirectusPolicy<Schema>;
|
|
sort: number;
|
|
}>;
|
|
//#endregion
|
|
export { DirectusAccess };
|
|
//# sourceMappingURL=access.d.ts.map |