Cookie Management
You can use the Cookie structure for data that you want to access even when the application is closed.
Cookie Management
With cookie manager, you can get and set operations for cookies.
SET
quick.cookie.set(key: string, {value: string, expire: string})
quick.cookie.set('test', { value : 'testValue', expire : '2022-11-01T20:09:39.780Z'})
GET
quick.cookie.get(key: string)
quick.cookie.get('test')
GETALL
quick.cookie.getAll()
quick.cookie.getAll()
DELETE
quick.cookie.delete(key: string)
quick.cookie.delete('test')