From 82b3df85fd39ebf6d016717192c145e8e3bac558 Mon Sep 17 00:00:00 2001 From: Shreyash Raj Date: Thu, 11 Aug 2022 11:03:18 +0530 Subject: [PATCH] small updates --- ts-script/constants.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ts-script/constants.ts b/ts-script/constants.ts index 48e52eb..1e6def9 100644 --- a/ts-script/constants.ts +++ b/ts-script/constants.ts @@ -3,7 +3,7 @@ import { Image } from "skia-canvas"; export interface SetDimensionOption { height: number; width: number; -}; +} export interface SetCaptchaOption { characters?: number; @@ -15,7 +15,7 @@ export interface SetCaptchaOption { rotate?: number; size?: number; opacity?: number; -}; +} export interface DrawCaptchaOption { text?: string; @@ -26,7 +26,7 @@ export interface DrawCaptchaOption { rotate?: number; size?: number; opacity?: number; -}; +} export interface SetDecoyOption { color?: string; @@ -34,13 +34,13 @@ export interface SetDecoyOption { size?: number; opacity?: number; total?: number; -}; +} export interface SetTraceOption { color?: string; size?: number; opacity?: number; -}; +} export interface CreateCaptchaOptions { captcha?: SetCaptchaOption;