0.3.15 • Published 2 years ago
umi-types-sudoku356-dev v0.3.15
umi-types
Type definitions for umi.
Why
Installation
$ yarn add umi-typesUsage
import { IApi } from 'umi-types';
export default function(api: IApi) {
api.log.success('hello');
}import { IApi, IModifyHTMLWithASTFunc } from 'umi-types';
export default function(api: IApi) {
const appendHead: IModifyHTMLWithASTFunc = ($, { route, getChunkPath }) => {
$('head').append(`<script src="${getChunkPath('a.js')}"></script>`);
};
api.modifyHTMLWithAST(appendHead);
}LICENSE
MIT
0.3.15
2 years ago