@types/plist
TypeScript definitions for plist
Last updated 8 years ago by types .
MIT · Repository · Original npm · Tarball · package.json
$ cnpm install @types/plist 
SYNC missed versions from official npm registry.

Installation

npm install --save @types/plist

Summary

This package contains type definitions for plist (https://github.com/TooTallNate/node-plist#readme).

Details

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

index.d.ts

/// <reference types="node" />
import { XMLToStringOptions } from "xmlbuilder";

// plist
export as namespace plist;

// plist.parse()
export function parse(xml: string): PlistValue;
// plist.build()
export function build(obj: PlistValue, opts?: PlistBuildOptions): string;

// PlistValue
export type PlistValue = string | number | boolean | Date | Buffer | PlistObject | PlistArray;
export interface PlistObject {
    readonly [x: string]: PlistValue;
}
export interface PlistArray extends ReadonlyArray<PlistValue> {}

// PlistBuildOptions
// The instance of this type is passed to 'xmlbuilder' module as it is.
export type PlistBuildOptions = XMLToStringOptions;

Additional Details

Credits

These definitions were written by Yusuke Higuchi.

Current Tags

  • 3.0.5                                ...           latest (2 years ago)
  • 3.0.2                                ...           ts2.2 (7 years ago)
  • 3.0.2                                ...           ts2.3 (7 years ago)
  • 3.0.2                                ...           ts2.4 (7 years ago)
  • 3.0.2                                ...           ts2.5 (7 years ago)
  • 3.0.2                                ...           ts2.6 (7 years ago)
  • 3.0.2                                ...           ts2.7 (7 years ago)
  • 3.0.2                                ...           ts2.8 (7 years ago)
  • 3.0.2                                ...           ts2.9 (7 years ago)
  • 3.0.2                                ...           ts3.0 (7 years ago)
  • 3.0.2                                ...           ts3.1 (7 years ago)
  • 3.0.2                                ...           ts3.2 (7 years ago)
  • 3.0.2                                ...           ts3.3 (7 years ago)
  • 3.0.2                                ...           ts3.4 (7 years ago)
  • 3.0.2                                ...           ts3.5 (7 years ago)
  • 3.0.2                                ...           ts3.6 (7 years ago)
  • 3.0.2                                ...           ts3.7 (7 years ago)
  • 3.0.2                                ...           ts3.8 (7 years ago)
  • 3.0.2                                ...           ts3.9 (7 years ago)
  • 3.0.2                                ...           ts4.0 (7 years ago)
  • 3.0.2                                ...           ts4.1 (7 years ago)
  • 3.0.2                                ...           ts4.2 (7 years ago)
  • 3.0.2                                ...           ts4.3 (7 years ago)
  • 3.0.2                                ...           ts4.4 (7 years ago)
  • 3.0.5                                ...           ts4.5 (2 years ago)
  • 3.0.5                                ...           ts4.6 (2 years ago)
  • 3.0.5                                ...           ts4.7 (2 years ago)
  • 3.0.5                                ...           ts4.8 (2 years ago)
  • 3.0.5                                ...           ts4.9 (2 years ago)
  • 3.0.5                                ...           ts5.0 (2 years ago)
  • 3.0.5                                ...           ts5.1 (2 years ago)
  • 3.0.5                                ...           ts5.2 (2 years ago)
  • 3.0.5                                ...           ts5.3 (2 years ago)
  • 3.0.5                                ...           ts5.4 (2 years ago)
  • 3.0.5                                ...           ts5.5 (2 years ago)
  • 3.0.5                                ...           ts5.6 (2 years ago)
  • 3.0.5                                ...           ts5.7 (2 years ago)
  • 3.0.5                                ...           ts5.8 (2 years ago)
  • 3.0.5                                ...           ts5.9 (2 years ago)
  • 3.0.5                                ...           ts6.0 (2 years ago)

6 Versions

  • 3.0.5                                ...           2 years ago
  • 3.0.4                                ...           2 years ago
  • 3.0.3                                ...           3 years ago
  • 3.0.2                                ...           7 years ago
  • 3.0.1                                ...           7 years ago
  • 3.0.0                                ...           8 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 1
Last Month 1
Dependencies (2)
Dev Dependencies (0)
None
Dependents (2)

Copyright 2013 - present © cnpmjs.org | Home |