source: frontend/node_modules/node-exports-info/getCategoryInfo.d.ts

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 404 bytes
Line 
1import type { Category, Condition } from './types';
2import type getCategoryFlags from './getCategoryFlags';
3
4declare namespace getCategoryInfo {
5 interface CategoryInfo {
6 conditions: Condition[] | null;
7 flags: getCategoryFlags.CategoryFlags;
8 }
9}
10
11declare function getCategoryInfo(
12 category: Category,
13 moduleSystem?: 'import' | 'require'
14): getCategoryInfo.CategoryInfo;
15
16export = getCategoryInfo;
Note: See TracBrowser for help on using the repository browser.