UNPKG

lokalise-file-exchange

Version:
20 lines (17 loc) 361 B
/** * Describes the structure of a Lokalise error. */ export interface LokaliseError { /** * The error message. */ message: string; /** * The error code representing the type of Lokalise API error. */ code?: number | undefined; /** * Additional details about the error (optional). */ details?: Record<string, string | number | boolean>; }