@the_dissidents/libemmm 0.0.9 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -153,13 +153,14 @@ type KernelConfiguration = {
|
|
|
153
153
|
};
|
|
154
154
|
interface ReadonlyConfiguration {
|
|
155
155
|
readonly initializers: readonly ((cxt: ParseContext) => void)[];
|
|
156
|
+
readonly modules: ReadonlyMap<string, ModuleDefinition>;
|
|
156
157
|
readonly blockModifiers: ReadonlyNameManager<BlockModifierDefinition<any>>;
|
|
157
158
|
readonly inlineModifiers: ReadonlyNameManager<InlineModifierDefinition<any>>;
|
|
158
159
|
readonly systemModifiers: ReadonlyNameManager<SystemModifierDefinition<any>>;
|
|
159
160
|
readonly argumentInterpolators: ReadonlyNameManager<ArgumentInterpolatorDefinition>;
|
|
160
161
|
readonly blockShorthands: ReadonlyNameManager<BlockShorthand<any>>;
|
|
161
162
|
readonly inlineShorthands: ReadonlyNameManager<InlineShorthand<any>>;
|
|
162
|
-
readonly kernel: KernelConfiguration
|
|
163
|
+
readonly kernel: Readonly<KernelConfiguration>;
|
|
163
164
|
}
|
|
164
165
|
declare class Configuration implements ReadonlyConfiguration {
|
|
165
166
|
initializers: ((cxt: ParseContext) => void)[];
|
package/dist/index.d.ts
CHANGED
|
@@ -152,13 +152,14 @@ type KernelConfiguration = {
|
|
|
152
152
|
};
|
|
153
153
|
interface ReadonlyConfiguration {
|
|
154
154
|
readonly initializers: readonly ((cxt: ParseContext) => void)[];
|
|
155
|
+
readonly modules: ReadonlyMap<string, ModuleDefinition>;
|
|
155
156
|
readonly blockModifiers: ReadonlyNameManager<BlockModifierDefinition<any>>;
|
|
156
157
|
readonly inlineModifiers: ReadonlyNameManager<InlineModifierDefinition<any>>;
|
|
157
158
|
readonly systemModifiers: ReadonlyNameManager<SystemModifierDefinition<any>>;
|
|
158
159
|
readonly argumentInterpolators: ReadonlyNameManager<ArgumentInterpolatorDefinition>;
|
|
159
160
|
readonly blockShorthands: ReadonlyNameManager<BlockShorthand<any>>;
|
|
160
161
|
readonly inlineShorthands: ReadonlyNameManager<InlineShorthand<any>>;
|
|
161
|
-
readonly kernel: KernelConfiguration
|
|
162
|
+
readonly kernel: Readonly<KernelConfiguration>;
|
|
162
163
|
}
|
|
163
164
|
declare class Configuration implements ReadonlyConfiguration {
|
|
164
165
|
initializers: ((cxt: ParseContext) => void)[];
|