1
0
mirror of https://github.com/SomboChea/ui synced 2026-01-12 06:05:43 +07:00

fix: install Component - Replaced class by func. comp (#152)

* refactor: convert class to func comp

* fix: fixed wrong maintainer type

* refactor: created a partials folder

* fix: fixed test
This commit is contained in:
Priscila Oliveira
2019-10-06 16:55:49 +02:00
committed by Juan Picado @jotadeveloper
parent 43a9628ec4
commit 9eb698f7e1
7 changed files with 6761 additions and 92 deletions

View File

@@ -36,7 +36,6 @@ export interface Version {
name: string;
version: string;
author?: string | Author;
maintainers?: Maintainer[];
description?: string;
license?: string;
main?: string;
@@ -49,8 +48,3 @@ export interface Author {
url?: string;
avatar?: string;
}
interface Maintainer {
email?: string;
name?: string;
}