mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2026-01-14 09:23:51 +01:00
9 lines
240 B
TypeScript
9 lines
240 B
TypeScript
import type { CodeKeywordDefinition, ErrorObject } from "../../types";
|
|
export type FormatError = ErrorObject<"format", {
|
|
format: string;
|
|
}, string | {
|
|
$data: string;
|
|
}>;
|
|
declare const def: CodeKeywordDefinition;
|
|
export default def;
|