-
Notifications
You must be signed in to change notification settings - Fork 95
Closed
Labels
bugSomething isn't workingSomething isn't workingluauFormatting related to LuauFormatting related to Luau
Description
export type AstExprTableItem =
| { kind: "list", value: AstExpr, separator: Token<"," | ";">? }
| { kind: "record", key: string, equals: Token<"=">, value: AstExpr, separator: Token<"," | ";">? }
| { kind: "general", key: string, equals: Token<"=">, value: AstExpr, separator: Token<"," | ";">? }... gets formatted as ...
export type AstExprTableItem = | { kind: "list", value: AstExpr, separator: Token<"," | ";">? } | {
kind: "record",
key: string,
equals: Token<"=">,
value: AstExpr,
separator: Token<"," | ";">?,
} | {
kind: "general",
key: string,
equals: Token<"=">,
value: AstExpr,
separator: Token<"," | ";">?,
}Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingluauFormatting related to LuauFormatting related to Luau