@openfga/frontend-utils
Version:
Exposes helpful utilities for building authoring experiences of OpenFGA Models.
19 lines (18 loc) • 580 B
TypeScript
import { Keyword } from "./keyword";
import { SchemaVersion } from "./schema-version";
import { LANGUAGE_NAME } from "./language-name";
import { DEFAULT_SCHEMA_VERSION } from "./default-schema-version";
export declare const enums: {
Keyword: typeof Keyword;
SchemaVersion: typeof SchemaVersion;
};
export { LANGUAGE_NAME, DEFAULT_SCHEMA_VERSION };
declare const constants: {
LANGUAGE_NAME: string;
DEFAULT_SCHEMA_VERSION: SchemaVersion;
enums: {
Keyword: typeof Keyword;
SchemaVersion: typeof SchemaVersion;
};
};
export default constants;