@inlang/core
Advanced tools
Comparing version 0.7.8 to 0.7.9
import type { Language } from "../ast/index.js"; | ||
import type * as ast from "../ast/index.js"; | ||
import type { InlangEnvironment } from '../environment/types.js'; | ||
import type { LintRule } from "../lint/rule.js"; | ||
import type { SdkConfig } from "./_sdk.js"; | ||
import type { Plugin, PluginSetupFunction } from "../plugin/types.js"; | ||
import type { InlangEnvironment } from "../environment/types.js"; | ||
import type { Plugin, PluginSetupFunction } from '../plugin/types.js'; | ||
/** | ||
@@ -121,3 +120,2 @@ * The entrypoint for inlang. | ||
}; | ||
sdk?: SdkConfig; | ||
}; | ||
@@ -124,0 +122,0 @@ type WithRequired<T, K extends keyof T> = T & { |
@@ -1,4 +0,4 @@ | ||
export type { Plugin } from "./types.js"; | ||
export type { Plugin, PluginSetupFunction } from "./types.js"; | ||
export { createPlugin } from "./createPlugin.js"; | ||
export { pluginBuildConfig } from "./pluginBuildConfig.js"; | ||
//# sourceMappingURL=index.d.ts.map |
{ | ||
"name": "@inlang/core", | ||
"type": "module", | ||
"version": "0.7.8", | ||
"version": "0.7.9", | ||
"publishConfig": { | ||
@@ -6,0 +6,0 @@ "access": "public" |
import type { Language } from "../ast/index.js" | ||
import type * as ast from "../ast/index.js" | ||
import type { InlangEnvironment } from '../environment/types.js' | ||
import type { LintRule } from "../lint/rule.js" | ||
import type { SdkConfig } from "./_sdk.js" | ||
import type { Plugin, PluginSetupFunction } from "../plugin/types.js" | ||
import type { InlangEnvironment } from "../environment/types.js" | ||
import type { Plugin, PluginSetupFunction } from '../plugin/types.js' | ||
@@ -130,6 +129,4 @@ /** | ||
} | ||
sdk?: SdkConfig // TODO: remove this from here once we have the plugin system | ||
} | ||
type WithRequired<T, K extends keyof T> = T & { [P in K]-?: T[P] } |
@@ -1,3 +0,3 @@ | ||
export type { Plugin } from "./types.js" | ||
export type { Plugin, PluginSetupFunction } from "./types.js" | ||
export { createPlugin } from "./createPlugin.js" | ||
export { pluginBuildConfig } from "./pluginBuildConfig.js" |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
446492
150
5101