lokalise-file-exchange
Version:
Exchange translation files with Lokalise TMS
20 lines (17 loc) • 349 B
text/typescript
/**
* 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;
/**
* Additional details about the error (optional).
*/
details?: Record<string, string | number | boolean>;
}