Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
quarto-dev
GitHub Repository: quarto-dev/quarto-cli
Path: blob/main/tools/profiler/types.ts
6435 views
1
export type LuaStack = {
2
frames: LuaStackFrame[];
3
time: number;
4
line: number;
5
category: string;
6
}
7
8
export type LuaStackFrame = {
9
location: string;
10
// name: string;
11
// source: string;
12
// line: number;
13
}
14
15