- Add package-lock.json for npm ci - Fix FROM casing in Dockerfile - Remove --only=production flag from npm ci 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
import type { ScalarTag } from '../types';
|
|
export declare const trueTag: ScalarTag & {
|
|
test: RegExp;
|
|
};
|
|
export declare const falseTag: ScalarTag & {
|
|
test: RegExp;
|
|
};
|