mirror of
https://github.com/anotherhadi/default-creds.git
synced 2026-04-04 20:32:11 +02:00
11 lines
172 B
TypeScript
11 lines
172 B
TypeScript
export interface Result {
|
|
manufacturer: string;
|
|
name: string;
|
|
icon: string;
|
|
tags: string[];
|
|
version: string;
|
|
comment: string;
|
|
user: string;
|
|
pass: string;
|
|
}
|