mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
364 B
TypeScript
14 lines
364 B
TypeScript
// Type definitions for valid-data-url 2.0
|
|
// Project: https://github.com/killmenot/valid-data-url
|
|
// Definitions by: jgeth <https://github.com/jgeth>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export as namespace validDataUrl;
|
|
|
|
declare const validDataUrl: {
|
|
(candidate: string): boolean;
|
|
regex: RegExp;
|
|
};
|
|
|
|
export = validDataUrl;
|