diff options
Diffstat (limited to 'std/encoding/_yaml/schema.ts')
-rw-r--r-- | std/encoding/_yaml/schema.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/std/encoding/_yaml/schema.ts b/std/encoding/_yaml/schema.ts index 579644dbb..98b49203c 100644 --- a/std/encoding/_yaml/schema.ts +++ b/std/encoding/_yaml/schema.ts @@ -4,8 +4,8 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { YAMLError } from "./error.ts"; -import { KindType, Type } from "./type.ts"; -import { ArrayObject, Any } from "./utils.ts"; +import type { KindType, Type } from "./type.ts"; +import type { ArrayObject, Any } from "./utils.ts"; function compileList( schema: Schema, |