std/front_matter/types.ts
2024-07-10 19:35:19 +09:00

9 lines
210 B
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
/** Return type for {@linkcode extract} function. */
export type Extract<T> = {
frontMatter: string;
body: string;
attrs: T;
};