@vercel/sdk
Version:
<p align="center"> <a href="https://vercel.com"> <img src="https://assets.vercel.com/image/upload/v1588805858/repositories/vercel/logo.png" height="96"> <h3 align="center">Vercel</h3> </a> <p align="center">Develop. Preview. Ship.</p> </p>
19 lines • 676 B
TypeScript
import * as z from "zod/v3";
import { ClosedEnum } from "../types/enums.js";
/**
* Enum containing the actions that can be performed against a resource. Group operations are included.
*/
export declare const ACLAction: {
readonly Create: "create";
readonly Delete: "delete";
readonly List: "list";
readonly Read: "read";
readonly Update: "update";
};
/**
* Enum containing the actions that can be performed against a resource. Group operations are included.
*/
export type ACLAction = ClosedEnum<typeof ACLAction>;
/** @internal */
export declare const ACLAction$inboundSchema: z.ZodNativeEnum<typeof ACLAction>;
//# sourceMappingURL=aclaction.d.ts.map