8 lines
146 B
TypeScript
8 lines
146 B
TypeScript
export declare function appendHead(params: {
|
|
type: "css";
|
|
href: string;
|
|
} | {
|
|
type: "javascript";
|
|
src: string;
|
|
}): Promise<void>;
|