mirror of
https://github.com/facebook/docusaurus.git
synced 2026-06-28 03:30:14 -04:00
15 lines
361 B
TypeScript
Vendored
15 lines
361 B
TypeScript
Vendored
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
// modules only used in tests
|
|
|
|
declare module 'to-vfile' {
|
|
import type {VFile} from 'vfile';
|
|
|
|
export function read(path: string, encoding?: string): Promise<VFile>;
|
|
}
|