mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-27 03:02:49 +00:00
* fix(v2): use remark-admonitions separately in each plugin instead of in preset only * Update types.d.ts * Update types.d.ts * Address fixes from review Co-authored-by: Yangshun Tay <tay.yang.shun@gmail.com>
14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
/**
|
|
* 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.
|
|
*/
|
|
|
|
declare module 'remark-admonitions' {
|
|
type Options = any;
|
|
|
|
const plugin: (options?: Options) => void;
|
|
export = plugin;
|
|
}
|