mirror of
https://github.com/rudimuc/obsidian-coder.git
synced 2026-07-22 09:00:29 +00:00
11 lines
192 B
TypeScript
11 lines
192 B
TypeScript
|
|
// Abstract class for all coders
|
|
export interface Coder {
|
|
|
|
from: string;
|
|
to: string;
|
|
|
|
transform (text:string) : string;
|
|
checkInput (text:string) : boolean;
|
|
|
|
}
|