mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 00:11:02 -05:00
Made an interface that represents Quilt plugin
This commit is contained in:
parent
c430f69877
commit
c178ef3187
1 changed files with 14 additions and 0 deletions
14
src/loaders/quilt/quilt-plugin.ts
Normal file
14
src/loaders/quilt/quilt-plugin.ts
Normal file
|
@ -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;
|
||||||
|
}
|
Loading…
Reference in a new issue