mirror of
https://github.com/dawidd6/action-send-mail.git
synced 2026-07-16 23:39:04 +07:00
Resolve attachments via glob
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
/**
|
||||
* Helper class for parsing paths into segments
|
||||
*/
|
||||
export declare class Path {
|
||||
segments: string[];
|
||||
/**
|
||||
* Constructs a Path
|
||||
* @param itemPath Path or array of segments
|
||||
*/
|
||||
constructor(itemPath: string | string[]);
|
||||
/**
|
||||
* Converts the path to it's string representation
|
||||
*/
|
||||
toString(): string;
|
||||
}
|
||||
Reference in New Issue
Block a user