mirror of
https://github.com/denoland/std.git
synced 2024-11-21 20:50:22 +00:00
9 lines
210 B
TypeScript
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;
|
|
};
|