ts-ci/README.template.md

43 lines
1.2 KiB
Markdown
Raw Normal View History

2020-05-15 22:51:31 +02:00
<p align="center">
<img src="https://user-images.githubusercontent.com/6702424/80216211-00ef5280-863e-11ea-81de-59f3a3d4b8e4.png">
</p>
<p align="center">
<i>#{DESC}#</i>
<br>
<br>
2021-12-23 13:57:23 +01:00
<a href="https://github.com/garronej/#{REPO_NAME}#/actions">
<img src="https://github.com/garronej/#{REPO_NAME}#/workflows/ci/badge.svg?branch=main">
</a>
<a href="https://bundlephobia.com/package/#{REPO_NAME}#">
<img src="https://img.shields.io/bundlephobia/minzip/#{REPO_NAME}#">
</a>
<a href="https://www.npmjs.com/package/#{REPO_NAME}#">
<img src="https://img.shields.io/npm/dw/#{REPO_NAME}#">
</a>
<a href="https://github.com/garronej/#{REPO_NAME}#/blob/main/LICENSE">
<img src="https://img.shields.io/npm/l/#{REPO_NAME}#">
</a>
2020-05-15 22:51:31 +02:00
</p>
<p align="center">
<a href="https://github.com/#{USER_OR_ORG}#/#{REPO_NAME}#">Home</a>
-
<a href="https://github.com/#{USER_OR_ORG}#/#{REPO_NAME}#">Documentation</a>
</p>
# Install / Import
```bash
2020-05-27 22:02:44 +02:00
$ npm install --save #{REPO_NAME}#
2020-05-15 22:51:31 +02:00
```
2020-05-27 22:02:44 +02:00
2020-05-15 22:51:31 +02:00
```typescript
2022-01-04 19:48:56 +01:00
import { myFunction, myObject } from "#{REPO_NAME}#";
2020-05-15 23:06:13 +02:00
```
Specific imports:
2020-05-15 23:06:13 +02:00
```typescript
2020-05-27 22:02:44 +02:00
import { myFunction } from "#{REPO_NAME}#/myFunction";
import { myObject } from "#{REPO_NAME}#/myObject";
2021-08-01 04:41:14 +02:00
```