UNPKG

@visulima/packem

Version:

A fast and modern bundler for Node.js and TypeScript.

7 lines (6 loc) 473 B
import type { Warning } from "postcss"; import type { ImportStatement, NodesStatement, PreImportStatement, Statement } from "../types.d.ts"; 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;