💄 update code style

This commit is contained in:
afc163 2019-04-26 18:15:31 +08:00
parent 14f5f5b1e9
commit 04001a06ea
No known key found for this signature in database
GPG Key ID: 738F973FCE5C6B48

View File

@ -1,18 +1,19 @@
import { tuple } from './type';
export const PresetColorTypes = tuple(
'pink',
'red',
'yellow',
'orange',
'cyan',
'green',
'blue',
'purple',
'geekblue',
'magenta',
'volcano',
'gold',
'lime'
'pink',
'red',
'yellow',
'orange',
'cyan',
'green',
'blue',
'purple',
'geekblue',
'magenta',
'volcano',
'gold',
'lime',
);
export type PresetColorType = (typeof PresetColorTypes)[number];