UNPKG

idea-toolbox

Version:
27 lines (26 loc) 646 B
import { Resource } from './resource.model'; import { ISOString } from './epoch'; /** * A whitelisted error for a project, i.e. an error to ignore during the reporting for a specific project. * * Table: `idea_projects_errorsWhitelisted`. */ export declare class ErrorWhitelisted extends Resource { /** * Project/product key. */ project: string; /** * The error message. */ error: string; /** * Timestamp when the error was whitelisted. */ createdAt: ISOString; /** * Some notes or an explanation why the error is whitelisted. */ notes: string; load(x: any): void; }