UNPKG
vite-plugin-custom-functions-metadata
Version:
latest (1.0.1)
1.0.1
1.0.0
Vite plugin to generate metadata for custom excel functions
vite-plugin-custom-functions-metadata
/
dist
/
index.d.ts
10 lines
(7 loc)
•
228 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
Plugin
}
from
'vite'
;
interface
Configuration
{
inputFile
:
string
;
outputFile
:
string
; }
declare
function
customFunctionsMetadata
(
config
:
Configuration
):
Plugin
;
export
{ customFunctionsMetadata
as
default
};