@stakingcapital.io/types
TypeScript icon, indicating that this package has built-in type declarations

1.1.8 • Public • Published

@staking-capital/types

Includes all types from:


Syntax Guidelines

Don't use default exports

export default type X = {}
...
import X from "./x"

export type X = {};

import { X } from "./x";

Use CamelCase instead of snake_case

type X = {
  first_name: string;
  last_name: string;
};

type X = {
  firstName: string;
  lastName: string;
};

Readme

Keywords

none

Package Sidebar

Install

npm i @stakingcapital.io/types

Weekly Downloads

0

Version

1.1.8

License

MIT

Unpacked Size

18.1 kB

Total Files

48

Last publish

Collaborators

  • stakingcapital