UNPKG

@clerk/backend

Version:

Clerk Backend SDK - REST Client for Backend API & JWT verification utilities

13 lines 556 B
import type { MachineScopeJSON } from './JSON'; /** * The Backend `MachineScope` object holds information about a machine scope. */ export declare class MachineScope { readonly fromMachineId: string; readonly toMachineId: string; readonly createdAt?: number | undefined; readonly deleted?: boolean | undefined; constructor(fromMachineId: string, toMachineId: string, createdAt?: number | undefined, deleted?: boolean | undefined); static fromJSON(data: MachineScopeJSON): MachineScope; } //# sourceMappingURL=MachineScope.d.ts.map