|
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 | |
|---|
| 1 | import type { Category, Condition } from './types';
|
|---|
| 2 | import type getCategoryFlags from './getCategoryFlags';
|
|---|
| 3 |
|
|---|
| 4 | declare namespace getCategoryInfo {
|
|---|
| 5 | interface CategoryInfo {
|
|---|
| 6 | conditions: Condition[] | null;
|
|---|
| 7 | flags: getCategoryFlags.CategoryFlags;
|
|---|
| 8 | }
|
|---|
| 9 | }
|
|---|
| 10 |
|
|---|
| 11 | declare function getCategoryInfo(
|
|---|
| 12 | category: Category,
|
|---|
| 13 | moduleSystem?: 'import' | 'require'
|
|---|
| 14 | ): getCategoryInfo.CategoryInfo;
|
|---|
| 15 |
|
|---|
| 16 | export = getCategoryInfo;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.