-
Notifications
You must be signed in to change notification settings - Fork 206
Expand file tree
/
Copy pathswift-closuretypealias.codesnippet
More file actions
26 lines (26 loc) · 1002 Bytes
/
swift-closuretypealias.codesnippet
File metadata and controls
26 lines (26 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDECodeSnippetCompletionPrefix</key>
<string>swift-closuretypealias</string>
<key>IDECodeSnippetCompletionScopes</key>
<array>
<string>ClassImplementation</string>
</array>
<key>IDECodeSnippetContents</key>
<string>typealias <#ClosureName#> = (_ <#arguments#>: <#type#>) -> <#return value#></string>
<key>IDECodeSnippetIdentifier</key>
<string>42AA2BDB-AA64-4260-9726-A72C20E79FBB</string>
<key>IDECodeSnippetLanguage</key>
<string>Xcode.SourceCodeLanguage.Swift</string>
<key>IDECodeSnippetSummary</key>
<string>Closure typealias with arguments and return value snippet for Swift</string>
<key>IDECodeSnippetTitle</key>
<string>Swift closure typealias</string>
<key>IDECodeSnippetUserSnippet</key>
<true/>
<key>IDECodeSnippetVersion</key>
<integer>2</integer>
</dict>
</plist>