diff --git a/src/loaders/quilt/quilt-plugin.ts b/src/loaders/quilt/quilt-plugin.ts new file mode 100644 index 0000000..b04b76a --- /dev/null +++ b/src/loaders/quilt/quilt-plugin.ts @@ -0,0 +1,14 @@ +/** + * Represents a plugin which can be loaded by the Quilt loader. + */ +export interface QuiltPlugin { + /** + * Language adapter to use for this plugin. + */ + adapter?: string; + + /** + * Points to an implementation of the plugin. + */ + value: string; +}