mirror of
https://github.com/jackyzha0/quartz.git
synced 2026-02-03 22:15:42 -06:00
11 lines
317 B
TypeScript
11 lines
317 B
TypeScript
import { ProgramIR } from "./ir"
|
|
|
|
export type BasesExpressions = {
|
|
filters?: ProgramIR
|
|
viewFilters: Record<string, ProgramIR>
|
|
formulas: Record<string, ProgramIR>
|
|
summaries: Record<string, ProgramIR>
|
|
viewSummaries: Record<string, Record<string, ProgramIR>>
|
|
propertyExpressions: Record<string, ProgramIR>
|
|
}
|