New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@types/cssbeautify

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/cssbeautify

TypeScript definitions for CSS Beautify

  • 0.3.2
  • ts3.6
  • ts3.7
  • ts3.8
  • ts3.9
  • ts4.0
  • ts4.1
  • ts4.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
11K
increased by28.17%
Maintainers
1
Weekly downloads
 
Created
Source

Installation

npm install --save @types/cssbeautify

Summary

This package contains type definitions for CSS Beautify (https://github.com/senchalabs/cssbeautify).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/cssbeautify.

index.d.ts

// Type definitions for CSS Beautify v0.3.1
// Project: https://github.com/senchalabs/cssbeautify
// Definitions by: rictic <https://github.com/rictic>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

interface Options {
  /**
   * A string used for the indentation of the declaration (default is 4
   * spaces).
   */
  indent?: string | undefined;
  /**
   * Defines the placement of open curly brace, either end-of-line (default)
   * or separate-line
   */
  openbrace?: 'end-of-line'|'separate-line' | undefined;

  /**
   * Always inserts a semicolon after the last ruleset(default is false)
   */
  autosemicolon?: boolean | undefined;
}
declare function beautify(cssText: string, options?: Options): string;

export = beautify;

Additional Details

  • Last updated: Thu, 08 Jul 2021 09:08:24 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by rictic.

FAQs

Package last updated on 08 Jul 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc