10 lines
277 B
TypeScript
10 lines
277 B
TypeScript
import { SupportedDocJson } from '../types';
|
|
|
|
export const constants = {
|
|
TYPES_SECTION_NAME: 'types',
|
|
TYPE_TO_SYNTAX: {
|
|
[SupportedDocJson.Doxity]: 'solidity',
|
|
[SupportedDocJson.TypeDoc]: 'typescript',
|
|
} as { [supportedDocType: string]: string },
|
|
};
|