UNPKG

@leancodepl/kratos

Version:

Headless React components library for building Ory Kratos authentication flows

23 lines 1.11 kB
import { MetricsDatapoint } from './MetricsDatapoint'; /** * Response of the getMetrics endpoint * @export * @interface GetProjectMetricsResponse */ export interface GetProjectMetricsResponse { /** * The list of data points. * @type {Array<MetricsDatapoint>} * @memberof GetProjectMetricsResponse */ readonly data: Array<MetricsDatapoint>; } /** * Check if a given object implements the GetProjectMetricsResponse interface. */ export declare function instanceOfGetProjectMetricsResponse(value: object): value is GetProjectMetricsResponse; export declare function GetProjectMetricsResponseFromJSON(json: any): GetProjectMetricsResponse; export declare function GetProjectMetricsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetProjectMetricsResponse; export declare function GetProjectMetricsResponseToJSON(json: any): GetProjectMetricsResponse; export declare function GetProjectMetricsResponseToJSONTyped(value?: Omit<GetProjectMetricsResponse, 'data'> | null, ignoreDiscriminator?: boolean): any; //# sourceMappingURL=GetProjectMetricsResponse.d.ts.map