UNPKG
magefront-plugin-postcss
Version:
latest (2.1.0)
2.1.0
2.0.0
1.2.2
1.2.1
1.2.0
1.1.0
1.0.0
0.4.0
0.3.2
0.3.0
0.2.3
0.2.2
0.2.1
0.2.0
0.1.0
PostCSS plugin for **magefront**.
github.com/ubermanu/magefront
ubermanu/magefront
magefront-plugin-postcss
/
src
/
plugin.d.ts
12 lines
(9 loc)
•
271 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{
Pattern
}
from
'fast-glob'
import
{
Plugin
}
from
'magefront'
import
{
AcceptedPlugin
}
from
'postcss'
export
interface
Options
{
src
?:
string
|
string
[]
ignore
?:
Pattern
[]
plugins
?:
AcceptedPlugin
[] }
export
default
function
(
options
?:
Options
):
Plugin