Made an interface that represents Quilt plugin

This commit is contained in:
Kir_Antipov 2023-03-17 07:38:13 +00:00
parent c430f69877
commit c178ef3187

View 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;
}