UNPKG

@leancodepl/kratos

Version:

Headless React components library for building Ory Kratos authentication flows

35 lines 1.05 kB
import { Workspace } from './Workspace'; /** * * @export * @interface ListWorkspaces */ export interface ListWorkspaces { /** * * @type {boolean} * @memberof ListWorkspaces */ has_next_page: boolean; /** * * @type {string} * @memberof ListWorkspaces */ next_page_token: string; /** * * @type {Array<Workspace>} * @memberof ListWorkspaces */ workspaces: Array<Workspace>; } /** * Check if a given object implements the ListWorkspaces interface. */ export declare function instanceOfListWorkspaces(value: object): value is ListWorkspaces; export declare function ListWorkspacesFromJSON(json: any): ListWorkspaces; export declare function ListWorkspacesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListWorkspaces; export declare function ListWorkspacesToJSON(json: any): ListWorkspaces; export declare function ListWorkspacesToJSONTyped(value?: ListWorkspaces | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=ListWorkspaces.d.ts.map