mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-14 08:08:24 +02:00
8 lines
177 B
TypeScript
8 lines
177 B
TypeScript
import type { ScalarTag } from '../types.js';
|
|
export declare const trueTag: ScalarTag & {
|
|
test: RegExp;
|
|
};
|
|
export declare const falseTag: ScalarTag & {
|
|
test: RegExp;
|
|
};
|