Page MenuHomec4science

consts.js
No OneTemporary

File Metadata

Created
Mon, Feb 10, 17:20

consts.js

import "core-js/modules/es.object.freeze";
export var DisplayModes = Object.freeze({
// Show all sections and components (default)
all: 'all',
// Show one section
section: 'section',
// Show one component
component: 'component',
// Show one example inside component or section
example: 'example',
// Show error 404
notFound: 'notFound'
});
export var ExampleModes = Object.freeze({
hide: 'hide',
collapse: 'collapse',
expand: 'expand'
});
export var UsageModes = Object.freeze({
hide: 'hide',
collapse: 'collapse',
expand: 'expand'
});

Event Timeline