chore: lint

This commit is contained in:
ppe
2023-01-13 12:19:16 +01:00
parent 185c2f7333
commit ffd2c414a3
2 changed files with 2 additions and 2 deletions

View File

@@ -7,7 +7,7 @@ export const knownWarpPlugins = [
'fetch-options'
] as const;
type WarpPluginPartialType = `smartweave-extension-${string}`;
export type WarpKnownPluginType = (typeof knownWarpPlugins)[number];
export type WarpKnownPluginType = typeof knownWarpPlugins[number];
export type WarpPluginType = WarpKnownPluginType | WarpPluginPartialType;
export interface WarpPlugin<T, R> {