Initial commit - Event Planner application

This commit is contained in:
mberlin
2026-03-18 14:55:56 -03:00
commit 86d779eb4d
7548 changed files with 1006324 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import type { OperationNode } from './operation-node.js';
export type TopModifier = 'percent' | 'with ties' | 'percent with ties';
export interface TopNode extends OperationNode {
readonly kind: 'TopNode';
readonly expression: number | bigint;
readonly modifiers?: TopModifier;
}
type TopNodeFactory = Readonly<{
is(node: OperationNode): node is TopNode;
create(expression: number | bigint, modifiers?: TopModifier): Readonly<TopNode>;
}>;
/**
* @internal
*/
export declare const TopNode: TopNodeFactory;
export {};