@ryusei/code
Version:
<div align="center"> <a href="https://code.ryuseijs.com"> <img alt="RyuseiCode" src="https://code.ryuseijs.com/images/svg/logo.svg" width="70"> </a>
30 lines (24 loc) • 518 B
TypeScript
declare module '@ryusei/code' {
import { Comment } from './Comment';
interface Options {
/**
* Options for the Comment component.
*/
comment?: boolean | CommentOptions,
}
interface CommentOptions {
}
interface Extensions {
Comment: Comment;
}
interface LanguageConfig {
/**
* A line comment syntax.
*/
lineComment?: [ string, string ];
/**
* A block comment syntax.
*/
blockComment?: [ string, string ];
}
}