This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Entity Interface": { | |
"prefix": "ei", | |
"body": [ | |
"import { IBaseEntity } from \"aq-fe-framework/interfaces\";", | |
"", | |
"export interface ${1:IDataType} extends IBaseEntity {", | |
" ${2:Body}", | |
"}" | |
], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# AQ Agent | |
## General Instructions | |
- Stay current with latest technologies and best practices. | |
- Prioritize technical accuracy and production-ready functionality. | |
## Interface Rules | |
- Every interface must include `id: number`. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Code canvas top shadow */ | |
.monaco-editor .scroll-decoration { | |
box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.75) !important; | |
top: -6px !important; | |
} | |
/* Side bar */ | |
.part.sidebar { | |
box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.25); | |
border-right: 0px solid #000 !important; |