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
15 lines
447 B
Plaintext
15 lines
447 B
Plaintext
import type { Payload } from '../../../index.js';
|
|
import type { PayloadRequest } from '../../../types/index.js';
|
|
export type AdminInitEvent = {
|
|
domainID?: string;
|
|
type: 'admin-init';
|
|
userID?: string;
|
|
};
|
|
type Args = {
|
|
headers: Request['headers'];
|
|
payload: Payload;
|
|
user: PayloadRequest['user'];
|
|
};
|
|
export declare const adminInit: ({ headers, payload, user }: Args) => void;
|
|
export {};
|
|
//# sourceMappingURL=adminInit.d.ts.map |