UNPKG

libmodulor

Version:

A TypeScript library to create platform-agnostic applications

9 lines (8 loc) 264 B
import type { TName } from '../base/TBase.js'; import { TString } from '../base/TString.js'; export type SQLQuery = string; export declare class TSQLQuery extends TString<SQLQuery> { tName(): TName; example(): SQLQuery; isPotentiallyLong(): boolean; }