You've already forked pigallery2
mirror of
https://github.com/bpatrik/pigallery2.git
synced 2025-06-15 00:05:28 +02:00
11 lines
165 B
TypeScript
11 lines
165 B
TypeScript
![]() |
export enum AutoCompeleteTypes {
|
||
|
image,
|
||
|
directory,
|
||
|
imageTag
|
||
|
}
|
||
|
|
||
|
export class AutoCompleteItem{
|
||
|
constructor(text:string, type:AutoCompeleteTypes){}
|
||
|
}
|
||
|
|