This commit is contained in:
Nick Guerrera 2021-05-13 11:38:31 -07:00 коммит произвёл GitHub
Родитель 96de03678a
Коммит bf53463205
2 изменённых файлов: 0 добавлений и 12 удалений

Просмотреть файл

@ -3,8 +3,6 @@ import glob from "glob";
import prettier from "prettier";
import * as adlPrettierPlugin from "../formatter/index.js";
export class ADLPrettierPluginNotFound extends Error {}
export async function formatADL(code: string): Promise<string> {
const output = prettier.format(code, {
parser: "adl",

Просмотреть файл

@ -8,13 +8,3 @@ export type PrettierChildPrint = (path: FastPath<Node>, index?: number) => Doc;
export interface DecorableNode {
decorators: DecoratorExpressionNode[];
}
type Union =
| { foo: string }
| { bar: string }
| { bar: string }
| { bar: string }
| { bar: string };
type Inter = { foo: string } & { bar: string } & { bar: string } & { bar: string } & {
bar: string;
};