5 lines
126 B
TypeScript
5 lines
126 B
TypeScript
|
|
import type { Category } from './types';
|
||
|
|
|
||
|
|
declare function getCategory(nodeVersion?: string): Category;
|
||
|
|
|
||
|
|
export = getCategory;
|