@visulima/packem
Version:
A fast and modern bundler for Node.js and TypeScript.
7 lines (6 loc) • 474 B
text/typescript
import type { Warning } from "postcss";
import type { ImportStatement, NodesStatement, PreImportStatement, Statement } from "../types.d.mts";
export declare const isWarning: (stmt: Statement) => stmt is Warning;
export declare const isNodesStatement: (stmt: Statement) => stmt is NodesStatement;
export declare const isImportStatement: (stmt: Statement) => stmt is ImportStatement;
export declare const isPreImportStatement: (stmt: Statement) => stmt is PreImportStatement;