|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
734 bytes
|
| Line | |
|---|
| 1 | import type * as PostCSS from 'postcss'
|
|---|
| 2 |
|
|---|
| 3 | export type PluginOptions = {
|
|---|
| 4 | /** Determines whether multiple, duplicate insertions are allowed */
|
|---|
| 5 | allowDuplicates?: boolean
|
|---|
| 6 | /** Defines an override of the project’s browserslist for this plugin. */
|
|---|
| 7 | browsers?: string
|
|---|
| 8 | /** Defines whether imports from this plugin will always be inserted at the beginning of a CSS file. */
|
|---|
| 9 | forceImport?: boolean
|
|---|
| 10 | }
|
|---|
| 11 |
|
|---|
| 12 | export type Plugin = {
|
|---|
| 13 | (pluginOptions?: PluginOptions): {
|
|---|
| 14 | postcssPlugin: 'postcss-normalize'
|
|---|
| 15 | Once(root: PostCSS.Root): void
|
|---|
| 16 | postcssImport: {
|
|---|
| 17 | load(filename: string, importOptions: any): {}
|
|---|
| 18 | resolve(id: string, basedir: string, importOptions: any): {}
|
|---|
| 19 | }
|
|---|
| 20 | }
|
|---|
| 21 | postcss: true
|
|---|
| 22 | }
|
|---|
| 23 |
|
|---|
| 24 | declare const plugin: Plugin
|
|---|
| 25 |
|
|---|
| 26 | export default plugin
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.