Sha256: 7ea24970d014fe8e6bbc04b0a88177ee71c73a0e562f2b7c9ecfa785281801ac

Contents?: true

Size: 1.43 KB

Versions: 12

Compression:

Stored size: 1.43 KB

Contents

import Container from './container';
import postcss from './postcss';
export default class AtRule extends Container implements postcss.AtRule {
    /**
     * Returns a string representing the node's type. Possible values are
     * root, atrule, rule, decl or comment.
     */
    type: string;
    /**
     * Contains information to generate byte-to-byte equal node string as it
     * was in origin input.
     */
    raws: postcss.AtRuleRaws;
    /**
     * The identifier that immediately follows the @.
     */
    name: string;
    /**
     * These are the values that follow the at-rule's name, but precede any {}
     * block. The spec refers to this area as the at-rule's "prelude".
     */
    params: string;
    /**
     * Represents an at-rule. If it's followed in the CSS by a {} block, this
     * node will have a nodes property representing its children.
     */
    constructor(defaults?: postcss.AtRuleNewProps);
    /**
     * @param overrides New properties to override in the clone.
     * @returns A clone of this node. The node and its (cloned) children will
     * have a clean parent and code style properties.
     */
    clone(overrides?: Object): AtRule;
    toJSON(): postcss.JsonAtRule;
    append(...children: any[]): Container;
    prepend(...children: any[]): Container;
    insertBefore(oldNode: any, newNode: any): Container;
    insertAfter(oldNode: any, newNode: any): Container;
    afterName: string;
    _params: string;
}

Version data entries

12 entries across 3 versions & 1 rubygems

Version Path
gulp_assets-1.0.0.pre.5 template/node_modules/gulp-postcss/node_modules/postcss/d.ts/at-rule.d.ts
gulp_assets-1.0.0.pre.5 template/node_modules/csswring/node_modules/postcss/d.ts/at-rule.d.ts
gulp_assets-1.0.0.pre.5 template/node_modules/autoprefixer/node_modules/postcss/d.ts/at-rule.d.ts
gulp_assets-1.0.0.pre.5 template/node_modules/css-mqpacker/node_modules/postcss/d.ts/at-rule.d.ts
gulp_assets-1.0.0.pre.4 template/node_modules/csswring/node_modules/postcss/d.ts/at-rule.d.ts
gulp_assets-1.0.0.pre.4 template/node_modules/autoprefixer/node_modules/postcss/d.ts/at-rule.d.ts
gulp_assets-1.0.0.pre.4 template/node_modules/css-mqpacker/node_modules/postcss/d.ts/at-rule.d.ts
gulp_assets-1.0.0.pre.4 template/node_modules/gulp-postcss/node_modules/postcss/d.ts/at-rule.d.ts
gulp_assets-1.0.0.pre.3 template/node_modules/autoprefixer/node_modules/postcss/d.ts/at-rule.d.ts
gulp_assets-1.0.0.pre.3 template/node_modules/gulp-postcss/node_modules/postcss/d.ts/at-rule.d.ts
gulp_assets-1.0.0.pre.3 template/node_modules/csswring/node_modules/postcss/d.ts/at-rule.d.ts
gulp_assets-1.0.0.pre.3 template/node_modules/css-mqpacker/node_modules/postcss/d.ts/at-rule.d.ts