bananass
Version:
Baekjoon Framework for JavaScript.🍌
39 lines (38 loc) • 1.31 kB
TypeScript
export const BAEKJOON_PROBLEM_NUMBER_MIN: 1000;
/** @type {string} */
export const PKG_DESCRIPTION: string;
/** @type {string} */
export const PKG_NAME: string;
/** @type {string} */
export const PKG_VERSION: string;
/** @type {string} */
export const PKG_AUTHOR: string;
/** @type {string} */
export const URL_HOMEPAGE: string;
/** @type {string} */
export const URL_NPM: string;
/** @type {string} */
export const URL_GITHUB_REPO: string;
/** @type {string} */
export const URL_GITHUB_ISSUES: string;
/** @type {string} */
export const URL_GITHUB_DISCUSSIONS: string;
/** @type {string} */
export const URL_BOJ_MAIN: string;
export function URL_BOJ_PROBLEM(problem: Problem): string;
/** @type {string} */
export const DEFAULT_ENTRY_DIR_NAME: string;
/** @type {string} */
export const DEFAULT_OUT_DIR_NAME: string;
/** @type {string} */
export const DEFAULT_OUT_FILE_EXTENSION: string;
/** @satisfies {string} */
export const NODE_VERSION_BAEKJOON: "16.13.1";
/** @satisfies {string} */
export const NODE_VERSION_CODEFORCES: "15.8.0";
/** @type {string} */
export const WEBPACK_BANNER: string;
export const BANANASS_PKG_NAMES: string[];
export const SUPPORTED_SOLUTION_FILE_EXTENSIONS: string[];
export const SUPPORTED_CONFIG_FILE_EXTENSIONS: string[];
export type Problem = import("./types.js").Problem;