UNPKG

@leancodepl/kratos

Version:

Headless React components library for building Ory Kratos authentication flows

31 lines 1.11 kB
import { Relationship } from './Relationship'; /** * Paginated Relationship List * @export * @interface Relationships */ export interface Relationships { /** * The opaque token to provide in a subsequent request * to get the next page. It is the empty string iff this is * the last page. * @type {string} * @memberof Relationships */ next_page_token?: string; /** * * @type {Array<Relationship>} * @memberof Relationships */ relation_tuples?: Array<Relationship>; } /** * Check if a given object implements the Relationships interface. */ export declare function instanceOfRelationships(value: object): value is Relationships; export declare function RelationshipsFromJSON(json: any): Relationships; export declare function RelationshipsFromJSONTyped(json: any, ignoreDiscriminator: boolean): Relationships; export declare function RelationshipsToJSON(json: any): Relationships; export declare function RelationshipsToJSONTyped(value?: Relationships | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=Relationships.d.ts.map