2022-01-27 17:28:48 +00:00
|
|
|
// Currenty we systematically bundle all the rules even if we only need a
|
|
|
|
// sub-section of them. We might support "code-splitting" the rules in the
|
|
|
|
// future.
|
|
|
|
import { Rule } from 'publicodes'
|
2022-11-03 16:32:04 +00:00
|
|
|
|
2022-03-30 13:19:06 +00:00
|
|
|
import { Names } from './dist/names'
|
2022-01-27 17:28:48 +00:00
|
|
|
|
2022-03-30 13:19:06 +00:00
|
|
|
export type DottedName = Names
|
|
|
|
declare let rules: Record<Names, Rule>
|
2022-03-28 12:57:11 +00:00
|
|
|
|
2022-01-27 17:28:48 +00:00
|
|
|
export default rules
|