/** * 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 '@theme-init/CodeBlock' { import type CodeBlock from '@theme/CodeBlock'; import type { Props as BaseProps } from '@theme/CodeBlock'; export interface Props extends BaseProps { youtubeID?: string metastring?: string [range: string]: string } const CodeBlockComp: typeof CodeBlock; export default CodeBlockComp; } // declaration.d.ts declare module '*.css' { const content: Record; export default content; }