UNPKG

@mariolazzari/rijks

Version:

Rijksmuseum REST APIs client TypeScript based

12 lines (10 loc) 185 B
import { Response } from "./Response"; export type Result<T extends Response> = | { success: true; data: T; } | { success: false; error: string; };