mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2026-01-12 09:13:50 +01:00
9 lines
243 B
TypeScript
9 lines
243 B
TypeScript
import type { CodeKeywordDefinition, ErrorObject } from "../../types";
|
|
export type PatternError = ErrorObject<"pattern", {
|
|
pattern: string;
|
|
}, string | {
|
|
$data: string;
|
|
}>;
|
|
declare const def: CodeKeywordDefinition;
|
|
export default def;
|