- Prefijo v2: MCH - TRACEABILITY-MASTER.yml creado - Listo para integracion como submodulo Workspace: v2.0.0 | SIMCO: v4.0.0
10 lines
276 B
TypeScript
10 lines
276 B
TypeScript
export declare namespace errorUtil {
|
|
type ErrMessage = string | {
|
|
message?: string | undefined;
|
|
};
|
|
const errToObj: (message?: ErrMessage) => {
|
|
message?: string | undefined;
|
|
};
|
|
const toString: (message?: ErrMessage) => string | undefined;
|
|
}
|