UNPKG

@the-any-thing/mollie-api-client-inline-pem

Version:
7 lines (6 loc) 423 B
declare type ResourceKind = 'capture' | 'chargeback' | 'customer' | 'mandate' | 'order' | 'orderline' | 'organization' | 'payment' | 'permission' | 'profile' | 'refund' | 'shipment' | 'subscription'; /** * Returns whether the passed identifier seems plausible (`true`); or is definitely invalid (`false`). */ export default function checkId(value: string | undefined, resource: ResourceKind): value is string; export {};